home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PPrintOptionsPS.cpp -------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PPrintOptionsPS.html
- *-------------------------------------------------------------------------
- */
-
- #include "PPrintOptionsPS.h"
- #include "PRequestBuf.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 14;
-
- PPrintOptionsPS::PPrintOptionsPS
- ( short cGraphics,
- PMBool bMarks,
- PMBool bPageInfo,
- PMBool bSendData,
- short cDownload,
- PMBool bSymbol,
- PMBool bErrHandler )
- {
- char * temp[REQUEST_SIZE];
- PRequestBuf request(temp);
-
- request << cGraphics
- << bMarks
- << bPageInfo
- << bSendData
- << cDownload
- << bSymbol
- << bErrHandler;
-
- PCommand command(pm_printoptionsps, request);
- }
-
- // end of PPrintOptionsPS.cpp
-